home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_name != "shipA")
- {
- xspeed = speed * Math.sin((_rotation * -1 + 180) * 0.017453292519943295);
- yspeed = speed * Math.cos((_rotation * -1 + 180) * 0.017453292519943295);
- _X = _X + xspeed;
- _Y = _Y + yspeed;
- _rotation = _rotation + rspeed * speed;
- xx = random(30);
- if(xx == 0)
- {
- rspeed *= -1;
- }
- if(_X < -100 || _X > 650 || _Y < -100 || _Y > 500 || _root.rem == true)
- {
- removeMovieClip(this);
- }
- var i = 0;
- while(i <= 20)
- {
- if(sh.harea.hitTest(_root["hmn" + i]))
- {
- life -= _root["hmn" + i].dmg;
- sh.play();
- removeMovieClip(_root["hmn" + i]);
- }
- i++;
- }
- if(_root.ship.sh.hitTest(_X,_Y,false))
- {
- play();
- _root.ship.play();
- }
- if(life <= 0)
- {
- play();
- }
- }
- }
-